home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * options.h - Grabber options record
- *
- * Copyright © 1990 Michael Kahl.
- *
- */
-
- struct opt {
-
- /* high byte (matches high byte of EventRecord.modifiers) */
- unsigned : 3;
- unsigned control : 1;
- unsigned option : 1;
- unsigned capsLock : 1;
- unsigned shift : 1;
- unsigned command : 1;
-
- /* low byte (additional options) */
- unsigned enabled : 1;
- unsigned momentum : 1;
- unsigned friction : 1;
- };
-